#include // load lib #include // load lib LiquidCrystal lcd(10,9,5,4,3,2); // make a lcd object #define dht_apin 11 dht DHT; // sensor pin S to pin11 void setup() { lcd.begin(16,2); // to tell fabduinofabduino there are 16 colunms and 2 rows Serial.begin(9600); pinMode(12, OUTPUT); pinMode(13, OUTPUT); } void loop(){ DHT.read11(dht_apin); lcd.setCursor(0,0); // row 1 lcd.print(" Humidity = "); // print on the lcd Humidity = lcd.print(DHT.humidity); // to print the humidity lcd.setCursor(0,1); lcd.print(" Temp = "); // print on the lcd temp = lcd.print(DHT.temperature); // print on the lcd temperture lcd.println(" C "); delay (250); // delay Serial.print(DHT.temperature); Serial.print(" ");